Spell “Cargo” consistently
authorIvan Ukhov <ivan.ukhov@gmail.com>
Wed, 18 Nov 2015 12:57:41 +0000 (13:57 +0100)
committerIvan Ukhov <ivan.ukhov@gmail.com>
Wed, 18 Nov 2015 13:02:58 +0000 (14:02 +0100)
src/doc/config.md
src/doc/manifest.md
src/doc/pkgid-spec.md

index da0e206e7a5c7296435dd170381eadc648f5535f..b45ae23ad2839923d818289e27dd42282ce83692 100644 (file)
@@ -1,6 +1,6 @@
 % Configuration - Cargo Documentation
 
-This document will explain how cargo’s configuration system works, as well as
+This document will explain how Cargo’s configuration system works, as well as
 available keys or configuration.  For configuration of a project through its
 manifest, see the [manifest format](manifest.html).
 
@@ -8,7 +8,7 @@ manifest, see the [manifest format](manifest.html).
 
 Cargo allows to have local configuration for a particular project or global
 configuration (like git). Cargo also extends this ability to a hierarchical
-strategy. If, for example, cargo were invoked in `/home/foo/bar/baz`, then the
+strategy. If, for example, Cargo were invoked in `/home/foo/bar/baz`, then the
 following configuration files would be probed for:
 
 * `/home/foo/bar/baz/.cargo/config`
@@ -59,7 +59,7 @@ vcs = "none"
 # literal string "$triple", and it will apply whenever that target triple is
 # being compiled to.
 [target]
-# For cargo builds which do not mention --target, these are the ar/linker tools
+# For Cargo builds which do not mention --target, these are the ar/linker tools
 # which are passed to rustc to use (via `-C ar=` and `-C linker=`). By default
 # these flags are not passed to the compiler.
 ar = ".."
index 83130d4101ec2e095ee0b57ef5bcd56692bdae5b..3cba30f114b7f09d787250f028fd014870904f60 100644 (file)
@@ -479,7 +479,7 @@ bench = true
 doc = true
 
 # If the target is meant to be a compiler plugin, this field must be set to true
-# for cargo to correctly compile it and make it available for all dependencies.
+# for Cargo to correctly compile it and make it available for all dependencies.
 plugin = false
 
 # If set to false, `cargo test` will omit the --test flag to rustc, which stops
index 8b28d7d9fc879ed11c8b7d39e1a2129d9fa2a76f..fea45e3b74d89a2ad124ed4a9d72ac023905dfc5 100644 (file)
@@ -2,9 +2,9 @@
 
 # Package ID Specifications
 
-Subcommands of cargo frequently need to refer to a particular package within a
+Subcommands of Cargo frequently need to refer to a particular package within a
 dependency graph for various operations like updating, cleaning, building, etc.
-To solve this problem, cargo supports Package ID Specifications. A specification
+To solve this problem, Cargo supports Package ID Specifications. A specification
 is a string which is used to uniquely refer to one package within a graph of
 packages.